home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Demo / Itcomm / auscomp-itcommander-win5.exe / {pf} / Firebird / include / ib_util.pas < prev    next >
Pascal/Delphi Source File  |  2004-02-20  |  2KB  |  38 lines

  1. (*******************************************************************)
  2. (*                                                                 *)
  3. (* The contents of this file are subject to the Interbase Public   *)
  4. (* License Version 1.0 (the "License"); you may not use this file  *)
  5. (* except in compliance with the License. You may obtain a copy    *)
  6. (* of the License at http://www.Inprise.com/IPL.html                 *)
  7. (*                                                                 *)
  8. (* Software distributed under the License is distributed on an     *)
  9. (* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express     *)
  10. (* or implied. See the License for the specific language governing *)
  11. (* rights and limitations under the License.                       *)
  12. (*                                                                 *)
  13. (* The Original Code was created by Inprise Corporation *)
  14. (* and its predecessors. Portions created by Inprise Corporation are     *)
  15. (* Copyright (C) Inprise Corporation. *)
  16. (*                                                                 *)
  17. (* All Rights Reserved.                                            *)
  18. (* Contributor(s): ______________________________________.         *)
  19. (*******************************************************************)
  20.  
  21. {***********************************************************}
  22. {                                                           }
  23. {     PROGRAM:    UDF and Blob filter Utilities library         }
  24. {     MODULE:        ib_util.h                                     }
  25. {     DESCRIPTION:    Prototype header file for ib_util.c       }
  26. {                                                           }
  27. {***********************************************************}
  28. unit ib_util;
  29.  
  30. interface
  31.  
  32. function ib_util_malloc(l: integer): pointer; cdecl; external 'ib_util.dll';
  33.  
  34. implementation
  35.  
  36. end.
  37.  
  38.